home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950329-19950528 / 000386_news@columbia.edu_Fri May 12 12:57:09 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16866
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 15 May 1995 18:37:29 -0400
  3. Received: by apakabar.cc.columbia.edu id AA15533
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 15 May 1995 18:37:26 -0400
  5. Newsgroups: comp.protocols.kermit.misc
  6. Path: news.columbia.edu!news.cs.columbia.edu!news.nyc.pipeline.com!newsjunkie.ans.net!howland.reston.ans.net!gatech!concert!mercury!hkennedy
  7. From: hkennedy@mercury.ncat.edu
  8. Subject: OS/2 Ckermit and Rexx don't mix?
  9. Message-Id: <1995May12.125709.28676@mercury.ncat.edu>
  10. Organization: North Carolina Agricultural and Technical State University
  11. Date: Fri, 12 May 1995 12:57:09 GMT
  12. Lines: 59
  13. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14.  
  15. Hi,
  16.  
  17. Can't use ckermit commands or in a Rexx script that runs under
  18. ckermit. Can anyone help out please.
  19.  
  20. Here is a little program to run under ckermit for OS/2 version 191.
  21. First is the program, the output from the program and lastly an 
  22. explanation for the error from OS/2. Does the same thing happen on your
  23. OS/2 system. Just for historial purposes the same thing happens in
  24. ckermit 190. Also the rexx scripts work fine as long as don't call any
  25. ckermit commands. :-(
  26.  
  27. --------------------- Below in the program ---------------------------
  28. /* This is a test of ckermit. */
  29.  
  30. /* TRACE "?R" */
  31.  
  32. SAY "Ckermit will crash when it gets a command that rexx cannot"
  33. SAY "process correctly and sends ckermit. Even ckermit commands"
  34. SAY "will cause the system to crash."
  35. SAY "Currently running in" Address()
  36.  
  37. 'set terminal type vt220'
  38.  
  39. /* end of test */
  40.  
  41. -------------------- Output from the program in ckermit -------------
  42. CKermit> rexx call test.cmd
  43. Ckermit will crash when it gets a command that rexx cannot
  44. process correctly and sends ckermit. Even ckermit commands
  45. will cause the ckermit to terminate.
  46. Currently running in CKermit
  47. SYS1808:
  48. The process has stopped.  The software diagnostic
  49. code (exception code) is  0005.
  50.  
  51. ------------------- What sys1808 means ------------------------------
  52. help sys1808
  53.  
  54. SYS1808:
  55. The process has stopped.  The software diagnostic
  56. code (exception code) is ***.
  57.  
  58. EXPLANATION: The program generated an exception that the system cannot
  59. resolve.  The soft ware diagnostic code allows determination of what
  60. type of exception was generated.
  61.  
  62. ACTION: Correct the problem or try a different version of the program.
  63.  
  64. ---------------------------------------------------------------------
  65.  
  66. According to the error I should try a different version. Any clues to
  67. the new version, or I'm doing something wrong?
  68.  
  69. Thanks,
  70.  
  71. Helen
  72. hkennedy@ncat.edu
  73.